home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 2 / Apprentice-Release2.iso / Source Code / Think Class Libraries / Expander / Sample Source / x_CDisplayPane.cp < prev    next >
Encoding:
Text File  |  1994-11-30  |  1.6 KB  |  63 lines  |  [TEXT/KAHL]

  1. /******************************************************************************
  2.  x_CDisplayPane.cp
  3.  
  4.                 CDisplayPane Panorama/EditText Class
  5.     
  6.     Copyright Â© 1994 My Software Inc. All rights reserved.
  7.  
  8.     Generated by Visual Architectâ„¢
  9.  
  10.     This file is rewritten each time you generate code. You should not
  11.     make changes to this file; changes should go in the My.cp
  12.     file, instead.
  13.  
  14.     If you want to change how Visual Architect generates this file, you can
  15.     change the template for this file. It is "_Pano_cp" in the Visual Architect
  16.     Templates folder.
  17.  
  18.  ******************************************************************************/
  19.  
  20. #include "x_CDisplayPane.h"
  21.  
  22. #include <CBartender.h>
  23.  
  24.  
  25. extern CBartender    *gBartender;        /* Manages all menus                */
  26.  
  27.  
  28. TCL_DEFINE_CLASS_M1(x_CDisplayPane, CExpandorama);
  29.  
  30.  
  31. /******************************************************************************
  32.  PutTo
  33.  
  34.         Put the contents of this object to the stream
  35.  ******************************************************************************/
  36.  
  37. void    x_CDisplayPane::PutTo(
  38.     CStream     &aStream)
  39. {
  40.         // Put data members for this class
  41.  
  42.  
  43.     CExpandorama::PutTo(aStream);    /* Let superclass save                */
  44. }
  45.  
  46.  
  47. /******************************************************************************
  48.  GetFrom
  49.  
  50.         Get the contents of this object from the stream and
  51.         initialize the object
  52.  ******************************************************************************/
  53.  
  54. void    x_CDisplayPane::GetFrom(
  55.     CStream     &aStream)
  56. {
  57.         // Get data members for this class
  58.  
  59.  
  60.                                         /* Let superclass restore            */
  61.     CExpandorama::GetFrom(aStream);
  62. }
  63.